home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
listings
/
v_12_03
/
allison
/
surprise.c
< prev
next >
Wrap
C/C++ Source or Header
|
1994-01-05
|
223b
|
12 lines
LISTING 7 - Preprocessed source with a surprise
main()
{
int SURPRISE! = 1, x2 = 2, x3 = 3;
printf("x1" " = %" "d" "\n",SURPRISE!);
printf("x2" " = %" "d" "\n",x2);
printf("x3" " = %" "d" "\n",x3);
return 0;
}